home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 June / CHIP Turkiye Haziran 1997.iso / oyun / wr3d / stunt_1 / strt_set.x < prev    next >
Text File  |  1997-02-09  |  10KB  |  508 lines

  1. xof 0302txt 0064
  2. template Header {
  3.  <3D82AB43-62DA-11cf-AB39-0020AF71E433>
  4.  WORD major;
  5.  WORD minor;
  6.  DWORD flags;
  7. }
  8.  
  9. template Vector {
  10.  <3D82AB5E-62DA-11cf-AB39-0020AF71E433>
  11.  FLOAT x;
  12.  FLOAT y;
  13.  FLOAT z;
  14. }
  15.  
  16. template Coords2d {
  17.  <F6F23F44-7686-11cf-8F52-0040333594A3>
  18.  FLOAT u;
  19.  FLOAT v;
  20. }
  21.  
  22. template Matrix4x4 {
  23.  <F6F23F45-7686-11cf-8F52-0040333594A3>
  24.  array FLOAT matrix[16];
  25. }
  26.  
  27. template ColorRGBA {
  28.  <35FF44E0-6C7C-11cf-8F52-0040333594A3>
  29.  FLOAT red;
  30.  FLOAT green;
  31.  FLOAT blue;
  32.  FLOAT alpha;
  33. }
  34.  
  35. template ColorRGB {
  36.  <D3E16E81-7835-11cf-8F52-0040333594A3>
  37.  FLOAT red;
  38.  FLOAT green;
  39.  FLOAT blue;
  40. }
  41.  
  42. template IndexedColor {
  43.  <1630B820-7842-11cf-8F52-0040333594A3>
  44.  DWORD index;
  45.  ColorRGBA indexColor;
  46. }
  47.  
  48. template Boolean {
  49.  <4885AE61-78E8-11cf-8F52-0040333594A3>
  50.  WORD truefalse;
  51. }
  52.  
  53. template Boolean2d {
  54.  <4885AE63-78E8-11cf-8F52-0040333594A3>
  55.  Boolean u;
  56.  Boolean v;
  57. }
  58.  
  59. template MaterialWrap {
  60.  <4885AE60-78E8-11cf-8F52-0040333594A3>
  61.  Boolean u;
  62.  Boolean v;
  63. }
  64.  
  65. template TextureFilename {
  66.  <A42790E1-7810-11cf-8F52-0040333594A3>
  67.  STRING filename;
  68. }
  69.  
  70. template Material {
  71.  <3D82AB4D-62DA-11cf-AB39-0020AF71E433>
  72.  ColorRGBA faceColor;
  73.  FLOAT power;
  74.  ColorRGB specularColor;
  75.  ColorRGB emissiveColor;
  76.  [...]
  77. }
  78.  
  79. template MeshFace {
  80.  <3D82AB5F-62DA-11cf-AB39-0020AF71E433>
  81.  DWORD nFaceVertexIndices;
  82.  array DWORD faceVertexIndices[nFaceVertexIndices];
  83. }
  84.  
  85. template MeshFaceWraps {
  86.  <4885AE62-78E8-11cf-8F52-0040333594A3>
  87.  DWORD nFaceWrapValues;
  88.  Boolean2d faceWrapValues;
  89. }
  90.  
  91. template MeshTextureCoords {
  92.  <F6F23F40-7686-11cf-8F52-0040333594A3>
  93.  DWORD nTextureCoords;
  94.  array Coords2d textureCoords[nTextureCoords];
  95. }
  96.  
  97. template MeshMaterialList {
  98.  <F6F23F42-7686-11cf-8F52-0040333594A3>
  99.  DWORD nMaterials;
  100.  DWORD nFaceIndexes;
  101.  array DWORD faceIndexes[nFaceIndexes];
  102.  [Material]
  103. }
  104.  
  105. template MeshNormals {
  106.  <F6F23F43-7686-11cf-8F52-0040333594A3>
  107.  DWORD nNormals;
  108.  array Vector normals[nNormals];
  109.  DWORD nFaceNormals;
  110.  array MeshFace faceNormals[nFaceNormals];
  111. }
  112.  
  113. template MeshVertexColors {
  114.  <1630B821-7842-11cf-8F52-0040333594A3>
  115.  DWORD nVertexColors;
  116.  array IndexedColor vertexColors[nVertexColors];
  117. }
  118.  
  119. template Mesh {
  120.  <3D82AB44-62DA-11cf-AB39-0020AF71E433>
  121.  DWORD nVertices;
  122.  array Vector vertices[nVertices];
  123.  DWORD nFaces;
  124.  array MeshFace faces[nFaces];
  125.  [...]
  126. }
  127.  
  128. Header {
  129.  1;
  130.  0;
  131.  1;
  132. }
  133.  
  134. Mesh {
  135.  52;
  136.  773.892761;661.270691;4022.488281;,
  137.  773.892761;635.124329;4022.488281;,
  138.  773.892761;626.550659;4022.488281;,
  139.  786.218323;626.550659;4022.488281;,
  140.  786.218323;635.230652;4022.488281;,
  141.  786.218323;648.250671;4022.488281;,
  142.  786.218323;667.485229;4022.488281;,
  143.  773.892761;667.485229;4022.488281;,
  144.  773.892761;661.270691;4003.901855;,
  145.  773.892761;635.124329;4003.901855;,
  146.  773.892761;626.550659;4003.901855;,
  147.  786.218323;626.550659;4003.901855;,
  148.  786.218323;635.230713;4003.901855;,
  149.  786.218323;648.250671;4003.901855;,
  150.  786.218323;667.485229;4003.901855;,
  151.  773.892761;667.485229;4003.901855;,
  152.  773.892761;661.270691;4022.488281;,
  153.  773.892761;635.124329;4022.488281;,
  154.  773.892761;626.550659;4022.488281;,
  155.  786.218323;626.550659;4022.488281;,
  156.  786.218323;635.230652;4022.488281;,
  157.  786.218323;648.250671;4022.488281;,
  158.  786.218323;667.485229;4022.488281;,
  159.  773.892761;667.485229;4022.488281;,
  160.  773.892761;661.270691;4022.488281;,
  161.  659.664001;661.270691;4022.488281;,
  162.  659.664001;635.124329;4022.488281;,
  163.  773.892761;635.124329;4022.488281;,
  164.  659.664001;661.270691;4022.488281;,
  165.  659.664001;667.485229;4022.488281;,
  166.  647.338440;667.485229;4022.488281;,
  167.  647.338440;648.250671;4022.488281;,
  168.  647.338440;635.230652;4022.488281;,
  169.  647.338440;626.550659;4022.488281;,
  170.  659.664001;626.550659;4022.488281;,
  171.  659.664001;635.124329;4022.488281;,
  172.  659.664001;661.270691;4003.901855;,
  173.  659.664001;667.485229;4003.901855;,
  174.  647.337769;667.485229;4003.901855;,
  175.  647.337769;648.250671;4003.901855;,
  176.  647.337769;635.230713;4003.901855;,
  177.  647.337769;626.550659;4003.901855;,
  178.  659.664001;626.550659;4003.901855;,
  179.  659.664001;635.124329;4003.901855;,
  180.  659.664001;661.270691;4022.488281;,
  181.  659.664001;667.485229;4022.488281;,
  182.  647.338440;667.485229;4022.488281;,
  183.  647.338440;648.250671;4022.488281;,
  184.  647.338440;635.230652;4022.488281;,
  185.  647.338440;626.550659;4022.488281;,
  186.  659.664001;626.550659;4022.488281;,
  187.  659.664001;635.124329;4022.488281;;
  188.  
  189.  50;
  190.  3;1,10,2;,
  191.  3;1,9,10;,
  192.  3;2,11,3;,
  193.  3;2,10,11;,
  194.  3;3,12,4;,
  195.  3;3,11,12;,
  196.  3;5,14,6;,
  197.  3;5,13,14;,
  198.  3;6,15,7;,
  199.  3;6,14,15;,
  200.  3;7,8,0;,
  201.  3;7,15,8;,
  202.  3;14,8,15;,
  203.  3;13,8,14;,
  204.  3;10,12,11;,
  205.  3;9,12,10;,
  206.  3;9,13,12;,
  207.  3;9,8,13;,
  208.  3;16,22,23;,
  209.  3;16,21,22;,
  210.  3;20,18,19;,
  211.  3;20,17,18;,
  212.  3;21,17,20;,
  213.  3;16,17,21;,
  214.  3;24,26,27;,
  215.  3;25,26,24;,
  216.  3;28,37,29;,
  217.  3;28,36,37;,
  218.  3;29,38,30;,
  219.  3;29,37,38;,
  220.  3;30,39,31;,
  221.  3;30,38,39;,
  222.  3;32,41,33;,
  223.  3;32,40,41;,
  224.  3;33,42,34;,
  225.  3;33,41,42;,
  226.  3;34,43,35;,
  227.  3;34,42,43;,
  228.  3;41,43,42;,
  229.  3;40,43,41;,
  230.  3;39,43,40;,
  231.  3;38,43,39;,
  232.  3;38,36,43;,
  233.  3;37,36,38;,
  234.  3;51,49,50;,
  235.  3;51,48,49;,
  236.  3;51,47,48;,
  237.  3;51,46,47;,
  238.  3;44,46,51;,
  239.  3;44,45,46;;
  240.  
  241.  MeshMaterialList {
  242.   2;
  243.   50;
  244.   0,
  245.   0,
  246.   0,
  247.   0,
  248.   0,
  249.   0,
  250.   0,
  251.   0,
  252.   0,
  253.   0,
  254.   0,
  255.   0,
  256.   0,
  257.   0,
  258.   0,
  259.   0,
  260.   0,
  261.   0,
  262.   0,
  263.   0,
  264.   0,
  265.   0,
  266.   0,
  267.   0,
  268.   1,
  269.   1,
  270.   0,
  271.   0,
  272.   0,
  273.   0,
  274.   0,
  275.   0,
  276.   0,
  277.   0,
  278.   0,
  279.   0,
  280.   0,
  281.   0,
  282.   0,
  283.   0,
  284.   0,
  285.   0,
  286.   0,
  287.   0,
  288.   0,
  289.   0,
  290.   0,
  291.   0,
  292.   0,
  293.   0;
  294.   Material {
  295.    1.000000;1.000000;1.000000;1.000000;;
  296.    15.000000;
  297.    1.000000;1.000000;1.000000;;
  298.    0.000000;0.000000;0.000000;;
  299.    TextureFilename {
  300.     "yell2.jpg";
  301.    }
  302.   }
  303.   Material {
  304.    1.000000;1.000000;1.000000;1.000000;;
  305.    15.000000;
  306.    1.000000;1.000000;1.000000;;
  307.    0.000000;0.000000;0.000000;;
  308.    TextureFilename {
  309.     "setlyt.jpg";
  310.    }
  311.   }
  312.  }
  313.  MeshNormals {
  314.   84;
  315.   -1.000000;0.000000;-0.000000;,
  316.   -1.000000;0.000000;-0.000000;,
  317.   -1.000000;0.000000;-0.000000;,
  318.   0.000000;-1.000000;0.000000;,
  319.   0.000000;-1.000000;0.000000;,
  320.   1.000000;-0.000000;0.000000;,
  321.   1.000000;-0.000000;0.000000;,
  322.   1.000000;-0.000000;0.000000;,
  323.   1.000000;-0.000000;0.000000;,
  324.   -0.000000;1.000000;-0.000000;,
  325.   -0.000000;1.000000;-0.000000;,
  326.   -1.000000;0.000000;-0.000000;,
  327.   -1.000000;0.000000;-0.000000;,
  328.   -0.000000;0.000000;-1.000000;,
  329.   -1.000000;-0.000000;-0.000000;,
  330.   -0.000000;0.000000;-1.000000;,
  331.   -1.000000;0.000000;-0.000000;,
  332.   0.000000;-1.000000;0.000000;,
  333.   -0.000000;0.000000;-1.000000;,
  334.   0.000000;-1.000000;0.000000;,
  335.   1.000000;0.000000;0.000000;,
  336.   -0.000000;0.000000;-1.000000;,
  337.   1.000000;-0.000000;0.000000;,
  338.   -0.000000;0.000000;-1.000000;,
  339.   1.000000;-0.000000;0.000000;,
  340.   0.000000;0.000000;-1.000000;,
  341.   1.000000;-0.000000;0.000000;,
  342.   -0.000000;1.000000;-0.000000;,
  343.   -0.000000;0.000000;-1.000000;,
  344.   -0.000000;1.000000;-0.000000;,
  345.   -1.000000;0.000000;-0.000000;,
  346.   -0.000000;0.000000;-1.000000;,
  347.   0.000000;-0.000000;1.000000;,
  348.   0.000000;-0.000000;1.000000;,
  349.   0.000000;-0.000000;1.000000;,
  350.   0.000000;-0.000000;1.000000;,
  351.   0.000000;-0.000000;1.000000;,
  352.   -0.000000;-0.000000;1.000000;,
  353.   0.000000;-0.000000;1.000000;,
  354.   0.000000;-0.000000;1.000000;,
  355.   0.000000;0.000000;1.000000;,
  356.   0.000000;0.000000;1.000000;,
  357.   0.000000;0.000000;1.000000;,
  358.   0.000000;0.000000;1.000000;,
  359.   1.000000;-0.000000;0.000000;,
  360.   1.000000;-0.000000;0.000000;,
  361.   -0.000000;1.000000;-0.000000;,
  362.   -0.000000;1.000000;-0.000000;,
  363.   -1.000000;0.000000;0.000033;,
  364.   -1.000000;0.000000;0.000033;,
  365.   -1.000000;0.000000;0.000033;,
  366.   -1.000000;0.000000;0.000033;,
  367.   0.000000;-1.000000;0.000000;,
  368.   0.000000;-1.000000;0.000000;,
  369.   1.000000;-0.000000;0.000000;,
  370.   1.000000;-0.000000;0.000000;,
  371.   1.000000;0.000000;0.000000;,
  372.   0.000000;-0.000000;-1.000000;,
  373.   1.000000;-0.000000;0.000000;,
  374.   -0.000000;1.000000;-0.000000;,
  375.   0.000000;0.000000;-1.000000;,
  376.   -0.000000;1.000000;-0.000000;,
  377.   -1.000000;0.000000;0.000033;,
  378.   -0.000000;-0.000000;-1.000000;,
  379.   -1.000000;0.000000;0.000033;,
  380.   0.000000;0.000000;-1.000000;,
  381.   -1.000000;0.000000;0.000033;,
  382.   0.000000;-0.000000;-1.000000;,
  383.   -1.000000;0.000000;0.000033;,
  384.   0.000000;-1.000000;0.000000;,
  385.   -0.000000;0.000000;-1.000000;,
  386.   0.000000;-1.000000;0.000000;,
  387.   1.000000;0.000000;0.000000;,
  388.   -0.000000;0.000000;-1.000000;,
  389.   1.000000;-0.000000;0.000000;,
  390.   -0.000000;0.000000;-1.000000;,
  391.   -0.000000;0.000000;1.000000;,
  392.   -0.000000;-0.000000;1.000000;,
  393.   0.000000;0.000000;1.000000;,
  394.   -0.000000;-0.000000;1.000000;,
  395.   -0.000000;0.000000;1.000000;,
  396.   0.000000;-0.000000;1.000000;,
  397.   0.000000;-0.000000;1.000000;,
  398.   0.000000;-0.000000;1.000000;;
  399.  
  400.   50;
  401.   3;1,16,2;,
  402.   3;1,14,16;,
  403.   3;3,19,4;,
  404.   3;3,17,19;,
  405.   3;5,22,6;,
  406.   3;5,20,22;,
  407.   3;7,26,8;,
  408.   3;7,24,26;,
  409.   3;9,29,10;,
  410.   3;9,27,29;,
  411.   3;11,12,0;,
  412.   3;11,30,12;,
  413.   3;28,13,31;,
  414.   3;25,13,28;,
  415.   3;18,23,21;,
  416.   3;15,23,18;,
  417.   3;15,25,23;,
  418.   3;15,13,25;,
  419.   3;32,38,39;,
  420.   3;32,37,38;,
  421.   3;36,34,35;,
  422.   3;36,33,34;,
  423.   3;37,33,36;,
  424.   3;32,33,37;,
  425.   3;40,42,43;,
  426.   3;41,42,40;,
  427.   3;44,58,45;,
  428.   3;44,56,58;,
  429.   3;46,61,47;,
  430.   3;46,59,61;,
  431.   3;48,64,49;,
  432.   3;48,62,64;,
  433.   3;50,68,51;,
  434.   3;50,66,68;,
  435.   3;52,71,53;,
  436.   3;52,69,71;,
  437.   3;54,74,55;,
  438.   3;54,72,74;,
  439.   3;70,75,73;,
  440.   3;67,75,70;,
  441.   3;65,75,67;,
  442.   3;63,75,65;,
  443.   3;63,57,75;,
  444.   3;60,57,63;,
  445.   3;83,81,82;,
  446.   3;83,80,81;,
  447.   3;83,79,80;,
  448.   3;83,78,79;,
  449.   3;76,78,83;,
  450.   3;76,77,78;;
  451.  }
  452.  MeshTextureCoords {
  453.   52;
  454.   0.626037;0.191002;,
  455.   0.626037;0.757854;,
  456.   0.626037;0.943729;,
  457.   0.373963;0.943729;,
  458.   0.373963;0.755548;,
  459.   0.373963;0.473275;,
  460.   0.373963;0.056271;,
  461.   0.626037;0.056271;,
  462.   0.626037;0.191002;,
  463.   0.626037;0.757854;,
  464.   0.626037;0.943729;,
  465.   0.373963;0.943729;,
  466.   0.373963;0.755548;,
  467.   0.373963;0.473275;,
  468.   0.373963;0.056271;,
  469.   0.626037;0.056271;,
  470.   0.626037;0.191002;,
  471.   0.626037;0.757854;,
  472.   0.626037;0.943729;,
  473.   0.373963;0.943729;,
  474.   0.373963;0.755548;,
  475.   0.373963;0.473275;,
  476.   0.373963;0.056271;,
  477.   0.626037;0.056271;,
  478.   0.008145;0.381488;,
  479.   0.991855;0.381488;,
  480.   0.991855;0.622593;,
  481.   0.008145;0.622593;,
  482.   0.373963;0.191002;,
  483.   0.373963;0.056271;,
  484.   0.626037;0.056271;,
  485.   0.626037;0.473275;,
  486.   0.626037;0.755548;,
  487.   0.626037;0.943729;,
  488.   0.373963;0.943729;,
  489.   0.373963;0.757854;,
  490.   0.373963;0.191002;,
  491.   0.373963;0.056271;,
  492.   0.626037;0.056271;,
  493.   0.626037;0.473275;,
  494.   0.626037;0.755548;,
  495.   0.626037;0.943729;,
  496.   0.373963;0.943729;,
  497.   0.373963;0.757854;,
  498.   0.373963;0.191002;,
  499.   0.373963;0.056271;,
  500.   0.626037;0.056271;,
  501.   0.626037;0.473275;,
  502.   0.626037;0.755548;,
  503.   0.626037;0.943729;,
  504.   0.373963;0.943729;,
  505.   0.373963;0.757854;;
  506.  }
  507. }
  508.